home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / skyland.zip / FINST.BAT next >
DOS Batch File  |  1991-11-11  |  2KB  |  39 lines

  1. echo off
  2. echo ---------------------------------------------------------------------------
  3. echo Skyland's Star Installation - 5¼ inch disk installation
  4. echo ---------------------------------------------------------------------------
  5.  
  6. if not "%1"=="" goto instl
  7. echo Usage:      finst [drive]
  8. echo ---------------------------------------------------------------------------
  9. echo If you want to install Skyland's Star to either a hard disk, a 3.5 inch
  10. echo disk (high or low density) or a high density 5.25 inch disk, use the
  11. echo INSTALL program.
  12. goto exit
  13.  
  14. :instl
  15. echo ---------------------------------------------------------------------------
  16. echo For the floppy installation, you must have two blank formatted floppies
  17. echo prepared.  Label one of them Disk 1 and the other Disk 2.
  18. echo If you are using a one floppy system, when prompted to insert a disk for
  19. echo drive %1, insert Disk 1.  When prompted for a disk in drive A, use the
  20. echo Skyland's Star disk.
  21. echo ---------------------------------------------------------------------------
  22. pause
  23. echo Copying files to Disk 1...
  24. pkunzip sky1.zip %1
  25. echo ---------------------------------------------------------------------------
  26. echo TWO DRIVE SYSTEMS:  Put Disk 2 in drive %1.
  27. echo ONE DRIVE SYSTEMS:  From now on, insert Disk 2 when prompted for drive %1.
  28. echo ---------------------------------------------------------------------------
  29. pause
  30. pkunzip sky2.zip %1
  31.  
  32. :end
  33. echo Installation done... Insert Disk 1 in drive A and type "Skyland" to play.
  34.  
  35. :exit
  36. echo on
  37.  
  38.  
  39.